home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Belgian Amiga Club - ADF Collection
/
BS1 part 60.zip
/
BS1 part 60
/
Highspeed pascal.adf
/
Interface
/
Amiga.pas
next >
Wrap
Pascal/Delphi Source File
|
1992-01-16
|
412b
|
26 lines
Unit Amiga;
Interface
Uses Exec, AmigaDOS;
Function CreatePort
(name: pCString;
pri: Integer): pMsgPort;
Procedure DeletePort (port: pMsgPort);
Function CreateExtIO
(port: pMsgPort;
size: Integer): pIORequest;
Procedure DeleteExtIO (ioReq: pIORequest);
Procedure NewList(list: pList);
Function SendPkt
(pid: pMsgPort;
action: LongInt;
var args;
nargs: Integer): LongInt;
End.